home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xpuzzles.3 / xpuzzles / xpuzzles-5.3.1 / xoct / Oct.h < prev    next >
C/C++ Source or Header  |  1996-02-05  |  2KB  |  91 lines

  1. /*
  2. # X-BASED OCTAHEDRON
  3. #
  4. #  Oct.h
  5. #
  6. ###
  7. #
  8. #  Copyright (c) 1994 - 96    David Albert Bagley, bagleyd@hertz.njit.edu
  9. #
  10. #                   All Rights Reserved
  11. #
  12. #  Permission to use, copy, modify, and distribute this software and
  13. #  its documentation for any purpose and without fee is hereby granted,
  14. #  provided that the above copyright notice appear in all copies and
  15. #  that both that copyright notice and this permission notice appear in
  16. #  supporting documentation, and that the name of the author not be
  17. #  used in advertising or publicity pertaining to distribution of the
  18. #  software without specific, written prior permission.
  19. #
  20. #  This program is distributed in the hope that it will be "playable",
  21. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. #
  24. */
  25.  
  26. /* Public header file for Oct */
  27.  
  28. #ifndef _XtOct_h
  29. #define _XtOct_h
  30.  
  31. /***********************************************************************
  32.  *
  33.  * Oct Widget
  34.  *
  35.  ***********************************************************************/
  36.  
  37. #define XtNselectCallback "selectCallback"
  38. #define XtNmono "mono"
  39. #define XtNsize "size"
  40. #define XtNsticky "sticky"
  41. #define XtNmode "mode"
  42. #define XtNorient "orient"
  43. #define XtNpractice "practice"
  44. #define XtNstart "start"
  45. #define XtNpieceBorder "pieceBorder"
  46. #define XtNfaceColor0 "faceColor0"
  47. #define XtNfaceColor1 "faceColor1"
  48. #define XtNfaceColor2 "faceColor2"
  49. #define XtNfaceColor3 "faceColor3"
  50. #define XtNfaceColor4 "faceColor4"
  51. #define XtNfaceColor5 "faceColor5"
  52. #define XtNfaceColor6 "faceColor6"
  53. #define XtNfaceColor7 "faceColor7"
  54. #define XtCMono "Mono"
  55. #define XtCSize "Size"
  56. #define XtCSticky "Sticky"
  57. #define XtCMode "Mode"
  58. #define XtCOrient "Orient"
  59. #define XtCPractice "Practice"
  60. #define OCT_RESTORE (-4)
  61. #define OCT_RESET (-3)
  62. #define OCT_AMBIGUOUS (-2)
  63. #define OCT_ILLEGAL (-1)
  64. #define OCT_MOVED 0
  65. #define OCT_CONTROL 1
  66. #define OCT_SOLVED 2
  67. #define OCT_PRACTICE 3
  68. #define OCT_RANDOMIZE 4
  69. #define OCT_DEC 5
  70. #define OCT_ORIENT 6
  71. #define OCT_INC 7
  72. #define OCT_PERIOD3 8
  73. #define OCT_PERIOD4 9
  74. #define OCT_BOTH 10
  75. #define OCT_STICKY 11
  76. #define OCT_COMPUTED 12
  77. #define OCT_UNDO 13
  78.  
  79. typedef struct _OctClassRec *OctWidgetClass;
  80. typedef struct _OctRec *OctWidget;
  81.  
  82. extern WidgetClass octWidgetClass;
  83.  
  84. typedef struct {
  85.   XEvent *event;
  86.   int reason;
  87. } octCallbackStruct;
  88.  
  89. #endif _XtOct_h
  90. /* DON'T ADD STUFF AFTER THIS #endif */
  91.